/* @import url("https://fast.fonts.net/lt/1.css?apiType=css&c=b2309cbf-e047-4158-bbcd-6118a089cb0c&fontids=1476018,1476068"); */
.rotate-90 {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.black {
  color: #54575a;
}

.bg-black {
  background-color: #54575a;
}

.white {
  color: white;
}

.bg-white {
  background-color: white;
}

.grey {
  color: #939598;
}

.bg-grey {
  background-color: #939598 !important;
}

.dark-grey {
  color: #424142;
}

.bg-dark-grey {
  background-color: #424142 !important;
}

.darker-grey {
  color: #231f20;
}

.bg-darker-grey {
  background-color: #231f20 !important;
}

.light-grey {
  color: #eee;
}

.bg-light-grey {
  background-color: #eee;
}

.green {
  color: #429644;
}

.light-green {
  color: #6bc04b;
}

.bg-green {
  background-color: #429644;
}

.placeholder-white::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 1;
}

.placeholder-white:-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
  opacity: 1;
}

.placeholder-white::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
  opacity: 1;
}

.placeholder-white:-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}

.baseline-grid-wrapper {
  position: absolute;
  pointer-events: none;
  margin: 0 auto;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
}
.baseline-grid-wrapper .toggle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}
.baseline-grid-wrapper .toggle button {
  border: none;
  padding: 7px;
  cursor: pointer;
  line-height: 14px;
}
.baseline-grid-wrapper .baseline-grid {
  display: none;
  height: 100%;
  pointer-events: none;
  margin-top: 0;
  z-index: 9998;
  position: relative;
  background: url('../img/grid/baseline-grid-14.png') repeat center 0;
}

.row-top.sml {
  margin-top: 14px;
}
.row-top.med {
  margin-top: 28px;
}
.row-top.lrg {
  margin-top: 42px;
}
.row-top.x-lrg {
  margin-top: 56px;
}

.col-no-pad {
  padding-left: 0;
  padding-right: 0;
}

.col-five {
  display: flex;
}
.col-five .column {
  border-right: 1px solid #6bc04b;
  width: 20%;
  padding: 0;
}

.spacey p {
  padding: 10px 0;
}
.spacey ul {
  padding: 10px 18px 20px;
}

/* .bg-preloader {
  background: url('../img/ui/preloader_green.gif') center center no-repeat;
} */

.brdr.brdr-left {
  border-left: 1px solid;
}
.brdr.brdr-right {
  border-right: 1px solid;
}
.brdr.brdr-right.last {
  border-right: none;
}
.brdr.brdr-top {
  border-top: 1px solid;
}
.brdr.brdr-bot {
  border-bottom: 1px solid;
}
.brdr.brdr-black {
  border-color: #54575a;
}
.brdr.brdr-grey {
  border-color: #eee;
}
.brdr.last {
  border: 0 none;
}

.brd-circle {
  border-radius: 50%;
}

.mrgn.mrgn-half-v {
  margin-top: 7px;
}
.mrgn.mrgn-top {
  margin-top: 22px;
}
.mrgn.mrgn-top-l {
  margin-top: 40px;
}

/* @font-face {
  font-family: "Universe Bold Cond";
  src: url("../fonts/univers/boldcond.eot?#iefix");
  src: url("../fonts/univers/boldcond.eot?#iefix") format("eot"), url("../fonts/univers/boldcond.woff2") format("woff2"), url("../fonts/univers/boldcond.woff") format("woff"), url("../fonts/univers/boldcond.ttf") format("truetype"); }
@font-face {
  font-family: "Univers Roman";
  src: url("../fonts/univers/roman.eot?#iefix");
  src: url("../fonts/univers/roman.eot?#iefix") format("eot"), url("../fonts/univers/roman.woff2") format("woff2"), url("../fonts/univers/roman.woff") format("woff"), url("../fonts/univers/roman.ttf") format("truetype"); } */
.fnt-ubc,
h1,
h2,
h3,
p strong {
  font-family: 'Universe Bold Cond';
}

.fnt-uroman,
body {
  font-family: 'Univers Roman';
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inline {
  display: inline !important;
}

.nm.nm-top {
  margin-top: 0;
}
.nm.nm-bot {
  margin-bottom: 0;
}

.no-pointer-events {
  pointer-events: none;
}

.circle-social {
  list-style-type: none;
  padding: 0;
}
.circle-social.circle-social-pad {
  padding-top: 10px;
}
.circle-social.center {
  width: 146px;
  background: none repeat scroll 0% 0% #939598;
  padding: 20px;
  margin: 0 auto;
}
.circle-social li {
  display: inline-block;
  margin-right: 4px;
}
.circle-social li.last {
  margin-right: 0;
}
.circle-social li a i {
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 18px;
  text-align: center;
  line-height: 30px;
  padding: 0;
}
.circle-social li a i.fa-facebook {
  background: #3b5998;
}
.circle-social li a i.fa-linkedin {
  background: #007bb6;
}
.circle-social li a i.fa-twitter {
  background: #00aced;
}
.circle-social li a i.fa-google-plus {
  background: #dd4b39;
}
.circle-social li a i.fa-instagram {
  background: #f78c1c;
}
.circle-social li a i.fa-rss {
  background: #694668;
}
.circle-social li a i.bg-white {
  background-color: white !important;
}
.circle-social li a i.bg-white.blue {
  color: dodgerblue !important;
}
.circle-social li a i.bg-white.light-blue {
  color: lightblue !important;
}

#social h5 {
  margin-bottom: 20px;
}

h1 {
  color: #429644;
  font-size: 42px;
  margin-top: 0;
  margin-bottom: 28px;
}
h1:not(:first-child) {
  margin-bottom: 7px;
}

h2 {
  color: #429644;
  font-size: 21px;
  margin-top: 0;
}

h3 {
  color: #54575a;
  font-size: 18px;
  line-height: 24px;
}

h4 {
  font-size: 16px;
  color: #54575a;
}

.h-pad {
  padding: 14px;
}

.h-bot {
  margin-bottom: 28px;
}

.h-nmt {
  margin-top: 0;
}

.fnt-xs {
  font-size: 10px;
}

.fnt-s {
  font-size: 12px;
}

.fnt-std {
  font-size: 14px;
}

.fnt-m,
.dataTables_empty {
  font-size: 18px;
}

.fnt-def {
  font-size: 16px;
}

.fnt-l {
  font-size: 20px;
}

.fnt-lm {
  font-size: 28px;
}

.fnt-xl {
  font-size: 35px;
}

.fnt-xxl {
  font-size: 42px;
}

.fnt-xxxl {
  font-size: 49px;
}

.fnt-icn-xl {
  font-size: 49px;
}

.fnt-bold {
  font-weight: bold;
}

header {
  height: 112px;
  margin-bottom: 42px;
}
header .logo-desktop {
  padding-top: 5px;
}

nav.nav-main {
  margin-top: 16px;
}
nav.nav-main ul {
  line-height: 42px;
  height: 42px;
}
nav.nav-main ul.list-inline li {
  padding-left: 14px;
  padding-right: 14px;
}
nav.nav-main ul.list-inline li.last {
  padding-right: 0;
}
nav.nav-main ul li {
  height: 42px;
}
nav.nav-main ul li form {
  height: 42px;
}
nav.nav-main ul li form input {
  background-color: #eee;
  border: none;
  line-height: normal;
  height: 35px;
  vertical-align: top;
  margin-top: 2px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  left: 4px;
}
nav.nav-main ul li form .btn-search {
  background-color: #54575a;
  color: white;
  height: 35px;
  vertical-align: top;
  margin-top: 2px;
  line-height: 14px;
}
nav.nav-main ul li form .btn-search:hover {
  background-color: #429644;
  color: white;
}

#nav_sub_products .nav-sub-content {
  top: -18px;
  padding-right: 0;
  padding-left: 0;
  left: 144px;
}

#nav_sub_about_us .nav-sub-content {
  top: -18px;
  left: 224px;
}

#nav_sub_technology .nav-sub-content {
  top: -18px;
  left: 112px;
}

#nav_sub_support .nav-sub-content {
  top: -18px;
  left: 210px;
}

#nav_sub_investors .nav-sub-content {
  top: -18px;
  left: 398px;
}

.nav-single {
  padding: 0 !important;
}
.nav-single ul.nav-sub {
  padding: 0 !important;
}
.nav-single ul.nav-sub ul li:first-child {
  margin-top: 0 !important;
}
.nav-single ul.nav-sub ul li.last a {
  padding-bottom: 10px !important;
}
.nav-single ul.nav-sub li:first-child {
  padding: 0 !important;
}
.nav-single ul.nav-sub li {
  border-bottom: 1px solid white !important;
}
.nav-single ul.nav-sub li.last {
  border-bottom: 0 none !important;
}
.nav-single ul.nav-sub li a {
  padding: 12px 14px !important;
}

.nav-sub-container {
  position: absolute;
  z-index: 1010;
}
.nav-sub-container .nav-sub-content {
  border-bottom: 3px solid #429644;
}
.nav-sub-container nav ul {
  list-style-type: none;
}
.nav-sub-container nav ul li.last > a {
  padding-bottom: 0;
}
.nav-sub-container nav ul.nav-sub {
  padding: 14px 0;
}
.nav-sub-container nav ul.nav-sub > li {
  padding: 14px 0;
}
.nav-sub-container nav ul.nav-sub > li.last > a {
  padding-bottom: 0;
  text-transform: uppercase;
}
.nav-sub-container nav ul.nav-sub li a {
  display: block;
  padding: 7px 0;
}
.nav-sub-container nav ul.nav-sub li a.first {
  padding-top: 0;
  padding-bottom: 7px;
}
.nav-sub-container nav ul.nav-sub ul {
  padding: 0;
}
.nav-sub-container nav ul.nav-sub ul li:first-child {
  margin-top: 10px;
}
.nav-sub-container nav ul.nav-sub ul > li.last > a {
  padding-bottom: 0;
}

#nav_product_table {
  padding-top: 10px;
}

#nav_sub_products.nav-en span.fnt-ubc.first.inline.black.text-uppercase {
  padding-left: 15px !important;
}
#nav_sub_products.nav-en .nav-sub-content {
  top: -12px;
  padding-right: 0;
  padding-left: 0;
  left: 144px;
}
#nav_sub_products.nav-en .nav-sub-content ul.nav-sub li:first-child {
  padding-top: 4px !important;
}
#nav_sub_products.nav-en .nav-sub-content div.col-xs-4 {
  padding: 0 15px;
}
#nav_sub_products.nav-en .nav-sub-content nav:first-child ul li.last {
  padding-left: 15px !important;
}
#nav_sub_products.nav-en .nav-sub-content nav.col-xs-4 {
  padding-left: 0;
  padding-right: 0;
}
#nav_sub_products.nav-en .nav-sub-content nav ul li.selected span {
  padding-left: 15px;
}
#nav_sub_products.nav-en .nav-sub-content nav ul li.selected:first-child {
  padding-top: 4px !important;
}
#nav_sub_products.nav-en .nav-sub-content nav ul ul > li {
  border-bottom: 1px solid white;
  padding: 5px 15px;
}
#nav_sub_products.nav-en .nav-sub-content nav ul ul > li a {
  padding: 7px 0 !important;
}
#nav_sub_products.nav-en .nav-sub-content.arrow.arrow-nav-products:before {
  position: absolute;
  left: 102px;
  top: -10px;
}

#nav_sub_about_us.nav-en .nav-sub-content {
  top: -12px;
  left: 224px;
}
#nav_sub_about_us.nav-en .nav-sub-content.arrow.arrow-nav-about:before {
  position: absolute;
  left: 50%;
  margin-left: -16px;
  top: -10px;
}

#nav_sub_technology.nav-en .nav-sub-content {
  top: -12px;
  left: 112px;
}
#nav_sub_technology.nav-en .nav-sub-content.arrow.arrow-nav-technology:before {
  position: absolute;
  left: 46px;
  top: -10px;
}

#nav_sub_support.nav-en .nav-sub-content {
  top: -12px;
  left: 210px;
}
#nav_sub_support.nav-en .nav-sub-content.arrow.arrow-nav-support:before {
  position: absolute;
  left: 32px;
  top: -10px;
}

#nav_sub_investors.nav-en .nav-sub-content {
  top: -12px;
  left: 398px;
}
#nav_sub_investors.nav-en .nav-sub-content.arrow.arrow-nav-investors:before {
  position: absolute;
  left: 36px;
  top: -10px;
}

#nav_sub_products.nav-de .nav-sub-content {
  top: -12px;
  padding-right: 0;
  padding-left: 0;
  left: 144px;
}
#nav_sub_products.nav-de .nav-sub-content.arrow.arrow-nav-products:before {
  position: absolute;
  left: 114px;
  top: -10px;
}

#nav_sub_about_us.nav-de .nav-sub-content {
  top: -12px;
  left: 262px;
}
#nav_sub_about_us.nav-de .nav-sub-content.arrow.arrow-nav-about:before {
  position: absolute;
  left: 50%;
  margin-left: -16px;
  top: -10px;
}

#nav_sub_technology.nav-de .nav-sub-content {
  top: -12px;
  left: 152px;
}
#nav_sub_technology.nav-de .nav-sub-content.arrow.arrow-nav-technology:before {
  position: absolute;
  left: 84px;
  top: -10px;
}

#nav_sub_support.nav-de .nav-sub-content {
  top: -12px;
  left: 168px;
}
#nav_sub_support.nav-de .nav-sub-content.arrow.arrow-nav-support:before {
  position: absolute;
  left: 76px;
  top: -10px;
}

#nav_sub_investors.nav-de .nav-sub-content {
  top: -12px;
  left: 360px;
}
#nav_sub_investors.nav-de .nav-sub-content.arrow.arrow-nav-investors:before {
  position: absolute;
  left: 76px;
  top: -10px;
}

#nav_sub_products.nav-zh .nav-sub-content {
  top: -12px;
  padding-right: 0;
  padding-left: 0;
  left: 144px;
}
#nav_sub_products.nav-zh .nav-sub-content.arrow.arrow-nav-products:before {
  position: absolute;
  left: 232px;
  top: -10px;
}

#nav_sub_about_us.nav-zh .nav-sub-content {
  top: -12px;
  left: 284px;
}
#nav_sub_about_us.nav-zh .nav-sub-content.arrow.arrow-nav-about:before {
  position: absolute;
  left: 50%;
  margin-left: -16px;
  top: -10px;
}

#nav_sub_technology.nav-zh .nav-sub-content {
  top: -12px;
  left: 200px;
}
#nav_sub_technology.nav-zh .nav-sub-content.arrow.arrow-nav-technology:before {
  position: absolute;
  left: 84px;
  top: -10px;
}

#nav_sub_support.nav-zh .nav-sub-content {
  top: -12px;
  left: 172px;
}
#nav_sub_support.nav-zh .nav-sub-content.arrow.arrow-nav-support:before {
  position: absolute;
  left: 76px;
  top: -10px;
}

#nav_sub_investors.nav-zh .nav-sub-content {
  top: -12px;
  left: 380px;
}
#nav_sub_investors.nav-zh .nav-sub-content.arrow.arrow-nav-investors:before {
  position: absolute;
  left: 76px;
  top: -10px;
}

#nav_sub_products.nav-es .nav-sub-content {
  top: -12px;
  padding-right: 0;
  padding-left: 0;
  left: 144px;
}
#nav_sub_products.nav-es .nav-sub-content.arrow.arrow-nav-products:before {
  position: absolute;
  left: 114px;
  top: -10px;
}

#nav_sub_about_us.nav-es .nav-sub-content {
  top: -12px;
  left: 254px;
}
#nav_sub_about_us.nav-es .nav-sub-content.arrow.arrow-nav-about:before {
  position: absolute;
  left: 50%;
  margin-left: -16px;
  top: -10px;
}

#nav_sub_technology.nav-es .nav-sub-content {
  top: -12px;
  left: 146px;
}
#nav_sub_technology.nav-es .nav-sub-content.arrow.arrow-nav-technology:before {
  position: absolute;
  left: 84px;
  top: -10px;
}

#nav_sub_support.nav-es .nav-sub-content {
  top: -12px;
  left: 158px;
}
#nav_sub_support.nav-es .nav-sub-content.arrow.arrow-nav-support:before {
  position: absolute;
  left: 76px;
  top: -10px;
}

#nav_sub_investors.nav-es .nav-sub-content {
  top: -12px;
  left: 352px;
}
#nav_sub_investors.nav-es .nav-sub-content.arrow.arrow-nav-investors:before {
  position: absolute;
  left: 76px;
  top: -10px;
}

#nav_sub_products.nav-nl .nav-sub-content {
  top: -12px;
  padding-right: 0;
  padding-left: 0;
  left: 144px;
}
#nav_sub_products.nav-nl .nav-sub-content.arrow.arrow-nav-products:before {
  position: absolute;
  left: 84px;
  top: -10px;
}

#nav_sub_about_us.nav-nl .nav-sub-content {
  top: -12px;
  left: 218px;
}
#nav_sub_about_us.nav-nl .nav-sub-content.arrow.arrow-nav-about:before {
  position: absolute;
  left: 50%;
  margin-left: -16px;
  top: -10px;
}

#nav_sub_technology.nav-nl .nav-sub-content {
  top: -12px;
  left: 104px;
}
#nav_sub_technology.nav-nl .nav-sub-content.arrow.arrow-nav-technology:before {
  position: absolute;
  left: 84px;
  top: -10px;
}

#nav_sub_support.nav-nl .nav-sub-content {
  top: -12px;
  left: 144px;
}
#nav_sub_support.nav-nl .nav-sub-content.arrow.arrow-nav-support:before {
  position: absolute;
  left: 76px;
  top: -10px;
}

#nav_sub_investors.nav-nl .nav-sub-content {
  top: -12px;
  left: 312px;
}
#nav_sub_investors.nav-nl .nav-sub-content.arrow.arrow-nav-investors:before {
  position: absolute;
  left: 76px;
  top: -10px;
}

#nav_sub_products.nav-ru .nav-sub-content {
  top: -12px;
  padding-right: 0;
  padding-left: 0;
  left: 144px;
}
#nav_sub_products.nav-ru .nav-sub-content.arrow.arrow-nav-products:before {
  position: absolute;
  left: 78px;
  top: -10px;
}

#nav_sub_about_us.nav-ru .nav-sub-content {
  top: -12px;
  left: 208px;
}
#nav_sub_about_us.nav-ru .nav-sub-content.arrow.arrow-nav-about:before {
  position: absolute;
  left: 50%;
  margin-left: -16px;
  top: -10px;
}

#nav_sub_technology.nav-ru .nav-sub-content {
  top: -12px;
  left: 98px;
}
#nav_sub_technology.nav-ru .nav-sub-content.arrow.arrow-nav-technology:before {
  position: absolute;
  left: 84px;
  top: -10px;
}

#nav_sub_support.nav-ru .nav-sub-content {
  top: -12px;
  left: 116px;
}
#nav_sub_support.nav-ru .nav-sub-content.arrow.arrow-nav-support:before {
  position: absolute;
  left: 76px;
  top: -10px;
}

#nav_sub_investors.nav-ru .nav-sub-content {
  top: -12px;
  left: 312px;
}
#nav_sub_investors.nav-ru .nav-sub-content.arrow.arrow-nav-investors:before {
  position: absolute;
  left: 76px;
  top: -10px;
}

#nav_sub_products.nav-fr .nav-sub-content {
  top: -12px;
  padding-right: 0;
  padding-left: 0;
  left: 144px;
}
#nav_sub_products.nav-fr .nav-sub-content.arrow.arrow-nav-products:before {
  position: absolute;
  left: 122px;
  top: -10px;
}

#nav_sub_about_us.nav-fr .nav-sub-content {
  top: -12px;
  left: 263px;
}
#nav_sub_about_us.nav-fr .nav-sub-content.arrow.arrow-nav-about:before {
  position: absolute;
  left: 50%;
  margin-left: -16px;
  top: -10px;
}

#nav_sub_technology.nav-fr .nav-sub-content {
  top: -12px;
  left: 158px;
}
#nav_sub_technology.nav-fr .nav-sub-content.arrow.arrow-nav-technology:before {
  position: absolute;
  left: 84px;
  top: -10px;
}

#nav_sub_support.nav-fr .nav-sub-content {
  top: -12px;
  left: 166px;
}
#nav_sub_support.nav-fr .nav-sub-content.arrow.arrow-nav-support:before {
  position: absolute;
  left: 76px;
  top: -10px;
}

#nav_sub_investors.nav-fr .nav-sub-content {
  top: -12px;
  left: 358px;
}
#nav_sub_investors.nav-fr .nav-sub-content.arrow.arrow-nav-investors:before {
  position: absolute;
  left: 76px;
  top: -10px;
}

.arrow.arrow-right:after {
  width: 0;
  height: 0;
  border-bottom: 14px solid transparent;
  border-top: 14px solid transparent;
  border-left: 14px solid #429644;
  font-size: 0;
  line-height: 0;
  content: ' ';
  position: absolute;
  right: -14px;
  z-index: 1;
  top: 50%;
  margin-top: -14px;
}
.arrow.arrow-left:before {
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-right: 14px solid black;
  font-size: 0;
  line-height: 0;
  content: ' ';
  position: absolute;
  left: -14px;
  z-index: 1;
  top: 50%;
  margin-top: -14px;
}
.arrow.arrow-down:after {
  content: ' ';
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid #000;
}
.arrow.arrow-primary:after {
  border-top: 14px solid #eee;
}
.arrow.arrow-black:after {
  border-top: 14px solid black;
}
.arrow.arrow-center:after {
  position: absolute;
  left: 50%;
  margin-left: -7px;
}
.arrow.arrow-down-left:after {
  position: absolute;
  left: 10%;
  margin-left: -14px;
}
.arrow.arrow-up:before {
  content: ' ';
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #000;
}
.arrow.arrow-nav:before {
  border-bottom: 10px solid #eee;
}

footer {
  margin-top: 28px;
}
footer nav ul {
  list-style-type: none;
}
footer nav ul li.last > a {
  padding-bottom: 0;
}
footer nav ul.nav-sub {
  padding: 14px 0;
}
footer nav ul.nav-sub > li {
  padding: 14px 0;
}
footer nav ul.nav-sub > li.last > a {
  padding-bottom: 0;
}
footer nav ul.nav-sub li a {
  display: block;
  padding: 3.5px 0;
}
footer nav ul.nav-sub li a.first {
  padding-top: 0;
  padding-bottom: 3.5px;
}
footer nav ul.nav-sub ul {
  padding: 0;
}
footer nav ul.nav-sub ul > li.last > a {
  padding-bottom: 0;
}

.checkbox label {
  display: inline-block;
  position: relative;
  padding-left: 5px;
}

.checkbox label::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}

.checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #555555;
}

.checkbox input[type='checkbox'] {
  display: none;
}

.checkbox input[type='checkbox']:checked + label::after {
  font-family: 'FontAwesome';
  content: '\f00c';
}

.checkbox input[type='checkbox']:disabled + label {
  opacity: 0.65;
}

.checkbox input[type='checkbox']:disabled + label::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}

.checkbox.checkbox-circle label::before {
  border-radius: 50%;
}

.checkbox-primary input[type='checkbox']:checked + label::before {
  background-color: #428bca;
  border-color: #428bca;
}

.checkbox-primary input[type='checkbox']:checked + label::after {
  color: #fff;
}

.checkbox-danger input[type='checkbox']:checked + label::before {
  background-color: #d9534f;
  border-color: #d9534f;
}

.checkbox-danger input[type='checkbox']:checked + label::after {
  color: #fff;
}

.checkbox-info input[type='checkbox']:checked + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.checkbox-info input[type='checkbox']:checked + label::after {
  color: #fff;
}

.checkbox-warning input[type='checkbox']:checked + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}

.checkbox-warning input[type='checkbox']:checked + label::after {
  color: #fff;
}

.checkbox-success input[type='checkbox']:checked + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c;
}

.checkbox-success input[type='checkbox']:checked + label::after {
  color: #fff;
}

.radio label {
  display: inline-block;
  position: relative;
  padding-left: 5px;
}

.radio label::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out;
  transition: border 0.15s ease-in-out;
}

.radio label::after {
  display: inline-block;
  position: absolute;
  content: ' ';
  width: 11px;
  height: 11px;
  left: 3px;
  top: 3px;
  margin-left: -20px;
  border-radius: 50%;
  background-color: #555555;
  -webkit-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.radio input[type='radio'] {
  display: none;
}

.radio input[type='radio']:checked + label::after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}

.radio input[type='radio']:disabled + label {
  opacity: 0.65;
}

.radio input[type='radio']:disabled + label::before {
  cursor: not-allowed;
}

.radio-primary input[type='radio'] + label::after {
  background-color: #428bca;
}

.radio-primary input[type='radio']:checked + label::before {
  border-color: #428bca;
}

.radio-primary input[type='radio']:checked + label::after {
  background-color: #428bca;
}

.radio-danger input[type='radio'] + label::after {
  background-color: #d9534f;
}

.radio-danger input[type='radio']:checked + label::before {
  border-color: #d9534f;
}

.radio-danger input[type='radio']:checked + label::after {
  background-color: #d9534f;
}

.radio-info input[type='radio'] + label::after {
  background-color: #5bc0de;
}

.radio-info input[type='radio']:checked + label::before {
  border-color: #5bc0de;
}

.radio-info input[type='radio']:checked + label::after {
  background-color: #5bc0de;
}

.radio-warning input[type='radio'] + label::after {
  background-color: #f0ad4e;
}

.radio-warning input[type='radio']:checked + label::before {
  border-color: #f0ad4e;
}

.radio-warning input[type='radio']:checked + label::after {
  background-color: #f0ad4e;
}

.radio-success input[type='radio'] + label::after {
  background-color: #5cb85c;
}

.radio-success input[type='radio']:checked + label::before {
  border-color: #5cb85c;
}

.radio-success input[type='radio']:checked + label::after {
  background-color: #5cb85c;
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.7);
  padding-bottom: 14px;
  padding-top: 14px;
  bottom: 14px;
}

.well {
  min-height: 21px;
  padding: 14px;
  margin-bottom: 0;
  border: none;
  border-radius: 0px;
  box-shadow: none;
}

.panel {
  margin-bottom: 0;
  background-color: transparent;
  border: 0;
  box-shadow: none;
}

.panel-heading {
  border-bottom: none;
}

.panel-body {
  padding: 0;
}
.panel-body .row {
  line-height: 28px;
  margin: 0;
  padding: 7px 0;
}

.modal-header button {
  margin-right: 10px;
}

.navbar {
  min-height: 28px;
}

.navbar-nav > li > a {
  padding-bottom: 7px;
  padding-top: 7px;
}

.navbar-right .dropdown-menu {
  width: 100%;
}

.form-control:focus {
  border-color: #6bc04b;
  outline: 0px none;
  box-shadow: none;
}

.form-group input,
.form-group select {
  height: 42px;
}

.btn.btn-lrg {
  padding: 10px 24px;
}

.carousel-indicators li {
  margin: 0;
  border-radius: 0;
  cursor: pointer;
}

.fa-bg-disc {
  background-color: white;
  border-radius: 50%;
  height: 28px;
  line-height: 28px;
  width: 28px;
  text-align: center;
}
.fa-bg-disc:hover {
  opacity: 1;
}

.fa-bg-square {
  background-color: #54575a;
  padding: 7px 14px;
  color: white;
  text-align: center;
}

.fa-shadow {
  box-shadow: 1px 1px 4px #231f20;
}

.fa-bg-opacity {
  opacity: 0.9;
}

.fa-lrg {
  height: 42px;
  line-height: 42px;
  width: 42px;
}

html,
body {
  width: 100%;
  margin: 0;
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  color: #424142;
  line-height: 14px;
  margin-top: 42px;
}
body.cke_editable {
  margin-top: 0;
}

a:link {
  color: #6bc04b;
}
a:visited {
  color: #6bc04b;
}
a:hover {
  color: #54575a;
  text-decoration: none;
}
a:active {
  color: #6bc04b;
}
a.invert:link {
  color: #54575a;
}
a.invert:visited {
  color: #54575a;
}
a.invert:hover {
  color: #6bc04b;
  text-decoration: none;
}
a.invert:active {
  color: #54575a;
}
a.underline:link {
  color: #6bc04b;
}
a.underline:visited {
  color: #6bc04b;
}
a.underline:hover {
  border-bottom: 1px solid;
  color: #6bc04b;
  text-decoration: none;
}
a.underline:active {
  color: #6bc04b;
}
a.green:link {
  color: #54575a;
}
a.green:visited {
  color: #54575a;
}
a.green:hover {
  color: #429644;
  text-decoration: underline;
}
a.green:active {
  color: #54575a;
}
a.white:link {
  color: white;
  text-decoration: none;
}
a.white:visited {
  color: white;
  text-decoration: none;
}
a.white:hover {
  color: #429644;
  text-decoration: none;
}
a.white:active {
  color: white;
  text-decoration: none;
}
a.white-white:link {
  color: white;
  text-decoration: none;
}
a.white-white:visited {
  color: white;
  text-decoration: none;
}
a.white-white:hover {
  color: white;
  text-decoration: none;
}
a.white-white:active {
  color: white;
  text-decoration: none;
}
a.grey:link {
  color: #939598;
  text-decoration: none;
}
a.grey:visited {
  color: #939598;
  text-decoration: none;
}
a.grey:hover {
  color: #54575a;
  text-decoration: none;
}
a.grey:active {
  color: #939598;
  text-decoration: none;
}
a.black:link {
  color: #54575a;
  text-decoration: none;
}
a.black:visited {
  color: #54575a;
  text-decoration: none;
}
a.black:hover {
  color: #54575a;
  text-decoration: none;
}
a.black:active {
  color: #54575a;
  text-decoration: none;
}

a.btn.btn-success:hover {
  color: white;
}

a.btn.btn-outline {
  border: 1px solid #429644;
  color: #429644;
  padding: 10px 14px;
}

h1 a {
  color: #429644;
}
h1 a:link {
  color: #429644;
}
h1 a:visited {
  color: #429644;
}
h1 a:hover {
  color: #54575a;
}
h1 a:active {
  color: #429644;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 0;
}

ul.paginate {
  margin-top: 28px;
}
ul.paginate li {
  padding: 0;
}
ul.paginate li a {
  border: 1px solid #939598;
  color: #54575a;
  cursor: pointer;
  margin-right: 7px;
  padding: 7px;
}
ul.paginate li a.previous,
ul.paginate li a.next,
ul.paginate li a.first,
ul.paginate li a.last {
  background: none;
  border: none;
}
ul.paginate li a.active {
  background-color: #939598;
}
ul.paginate li a:hover {
  color: #429644;
}
ul.list-menu {
  line-height: 28px;
}
ul.list-flush {
  list-style-type: none;
  padding: 0;
}
ul.list-flush li {
  padding: 6px 0;
}

table.d-table {
  border-bottom: 1px solid #eee;
  width: 100% !important;
  visibility: hidden;
}
table thead {
  background-color: #424142;
  color: white;
}
table thead th {
  border: none !important;
  cursor: pointer;
  padding: 14px !important;
  text-align: center;
  font-size: 13px;
}
table tbody td {
  vertical-align: middle !important;
  text-align: center !important;
  font-size: 12px;
  border-right: 1px solid #eee;
}

.dataTables_wrapper {
  background: url('../img/ui/preloader_green.gif') center center no-repeat;
  margin-bottom: 56px;
}

.dataTables_length {
  display: none;
  visibility: hidden;
}

.dataTables_paginate {
  margin-top: 28px;
}
.dataTables_paginate span > span {
  border: 1px solid #939598;
  color: #54575a;
  padding: 7px;
  margin-right: 7px;
}

.paginate_button {
  border: 1px solid #939598;
  color: #54575a;
  cursor: pointer;
  margin-right: 7px;
  padding: 7px;
}
.paginate_button.previous,
.paginate_button.next,
.paginate_button.first,
.paginate_button.last {
  background: none;
  border: none;
}
.paginate_button.current {
  background-color: #939598;
}
.paginate_button:hover {
  color: #429644;
}

.sorting_desc,
.sorting_asc {
  color: #6bc04b;
}

label {
  display: block;
}

input,
select {
  background: white;
  border: none;
  height: 35px;
  padding: 7px 14px;
}
input.input-full,
select.input-full {
  width: 100%;
}

input[type='text'],
textarea {
  outline: none;
  box-shadow: none !important;
}

#select_language {
  background-color: #ffffff !important;
  border-radius: 0;
}

form.search.search-lrg input {
  background-color: #eee;
  height: 49px;
  width: 92%;
}
form.search.search-lrg button {
  background-color: #54575a;
  height: 49px;
  position: absolute;
  width: 49px;
  right: 15px;
}

img.m-top {
  margin-top: 28px;
}
img.shadow-s {
  box-shadow: 2px 2px 2px #999999;
}

iframe.documents {
  height: 700px;
}

p {
  line-height: 21px;
  margin-top: 14px;
  margin-bottom: 14px;
  word-wrap: break-word;
}
p.m-half {
  margin-top: 7px;
  margin-bottom: 7px;
}
p.m-bot {
  margin-bottom: 0;
}

svg g {
  fill: #4d4d4d;
}
svg a g:hover {
  fill: #429644;
}

/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */
/* Small devices (tablets, 768px and up) */
/* Medium devices (desktops, 992px and up) */
/* Large devices (large desktops, 1200px and up) */
html.hrd .mbl-menu-icn {
  background: url('../img/sprt/sprt_mbl_nav-2x.png') no-repeat transparent;
  background-size: 153px 66px;
  height: 33px;
  width: 33px;
}

.no-pad {
  padding: 0;
}

html.no-hrd .mbl-menu-icn {
  background: url('../img/sprt/sprt_mbl_nav.png') no-repeat transparent;
}

#mbl_menu {
  position: fixed;
  width: 100%;
  z-index: 99999;
  top: 0;
}
#mbl_menu div.logo {
  padding: 6px 0;
}
#mbl_menu ul {
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
}
#mbl_menu ul .mbl-menu-icn {
  float: left;
  cursor: pointer;
  height: 33px;
  width: 33px;
  margin-right: 10px;
}
#mbl_menu ul .mbl-menu-icn.last {
  margin-right: 0;
}
#mbl_menu ul .mbl-menu-icn a {
  height: 33px;
  width: 33px;
  display: block;
}
#mbl_menu ul .mbl-menu-icn.menu {
  background-position: -117px 0;
}
#mbl_menu ul .mbl-menu-icn.menu.active {
  background-position: -117px -35px;
}
#mbl_menu ul .mbl-menu-icn.locate {
  background-position: -40px 0;
}
#mbl_menu ul .mbl-menu-icn.help {
  background-position: -79px 0;
}
#mbl_menu ul .mbl-menu-icn.call.active {
  background-position: -1px -34px;
}

#ms_menu,
#call_menu {
  background: #939598;
  position: fixed;
  top: 58px;
  right: -120%;
  z-index: 99999;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: -2px 3px 6px #888;
}
#ms_menu.mbl-menu-cart,
#call_menu.mbl-menu-cart {
  top: 84px;
}
#ms_menu h2,
#call_menu h2 {
  color: #231f20;
}
#ms_menu .ms-level ul,
#call_menu .ms-level ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#ms_menu .ms-level ul li,
#call_menu .ms-level ul li {
  cursor: pointer;
  margin: 0;
  padding: 0 10px;
  border-bottom: 1px solid #231f20;
  line-height: 50px;
}
#ms_menu .ms-level ul li i,
#call_menu .ms-level ul li i {
  line-height: 50px;
  margin-right: 10px;
}
#ms_menu .ms-level ul li a,
#call_menu .ms-level ul li a {
  line-height: 50px;
  width: 100%;
  display: block;
  font-size: 17px;
}
#ms_menu .ms-level ul li form input,
#call_menu .ms-level ul li form input {
  background: transparent;
  border: none;
  height: 50px;
  width: 100%;
}
#ms_menu .ms-level ul li a,
#call_menu .ms-level ul li a {
  color: #231f20;
  text-decoration: none;
}
#ms_menu .ms-level .ms-sub,
#call_menu .ms-level .ms-sub {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}

#ms_menu .ms-level ul li .ds-level {
  position: absolute;
  top: 0;
  right: -100%;
  background: #939598;
  height: 100%;
  width: 100%;
  display: none;
}
#ms_menu .ms-level ul li .ds-level i {
  line-height: 50px;
  margin-right: 10px;
}
#ms_menu .ms-level ul li span.mbl-sub-icn {
  display: inline-block;
  width: 18px;
  height: 18px;
  float: left;
  margin: 16px 10px 0 0;
}
#ms_menu .ms-level ul li span.mbl-sub-icn.locate {
  background-position: -23px 0;
}
#ms_menu .ms-level ul li span.mbl-sub-icn.bat-srch {
  background-position: -46px 0;
}
#ms_menu .ms-level ul li span.mbl-sub-icn.bat {
  background-position: -69px 0;
}
#ms_menu .ms-level ul li span.mbl-sub-icn.app {
  background-position: -92px 0;
}
#ms_menu .ms-level ul li span.mbl-sub-icn.back {
  background-position: -115px 0;
}
#ms_menu .ms-level ul li form input {
  width: 86%;
}

.mbl-cart {
  background-color: red;
  width: 100%;
  height: 26px;
  padding: 0 20px;
}
.mbl-cart a {
  line-height: 26px;
}

#mbl {
  margin-top: 58px;
}

.avatar-sm {
  border: 2px solid green;
  margin-top: 2px;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
  position: absolute;
  padding-top: 28px;
  padding-bottom: 28px;
}
.hero-overlay h1 {
  margin-bottom: 14px;
  margin-top: 14px;
}
.hero-overlay p {
  color: white;
}

.crsl-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 30%;
  text-align: center;
}
.crsl-overlay h1 {
  font-size: 34px;
  color: #54575a;
}

.cms-content ul li,
.cms-content ol li {
  line-height: 21px;
  margin-top: 7px;
  margin-bottom: 7px;
}
.cms-content a {
  line-height: 21px;
}

.copyright {
  bottom: 0;
  position: absolute;
  height: 92px;
  right: -200px;
  top: 164px;
}
.copyright p {
  margin-top: 2px;
  margin-bottom: 0;
}

.pointer {
  cursor: pointer;
}

.active-bio {
  text-align: left !important;
}
.active-bio h3 {
  color: #6bc04b !important;
  font-size: 26px !important;
  line-height: normal !important;
}
.active-bio hr {
  border-top: #429644 1px solid;
  display: block;
  margin: 0;
  width: 90%;
}

.timeline p {
  margin-top: 6px;
  font-size: 13px;
}
.timeline ul {
  font-size: 13px;
  padding: 0 0 0 18px;
}
.timeline ul li {
  margin-bottom: 0 !important;
}

.bio {
  padding: 20px 30px;
}
.bio p {
  color: #424142;
  margin-top: 0 !important;
}

.display-none {
  display: none;
}

#admin_modal .modal-dialog {
  width: 768px;
}
#admin_modal .modal-dialog .modal-content .modal-body {
  padding: 0;
}
#admin_modal iframe {
  height: 800px;
  position: relative;
  z-index: 80;
}

.edit-modal.btn-center {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -21px;
  margin-right: -21px;
  margin-top: -21px;
}

.preloader {
  position: absolute;
  z-index: 70;
  top: 48%;
  left: 50%;
  font-size: 50px;
}

.captcha-img img {
  height: 42px;
  width: 100%;
}

.back-to-top {
  position: fixed;
  bottom: 7px;
  right: 3.5px;
  text-decoration: none;
  color: #231f20;
  background-color: #939598;
  font-size: 21px;
  padding: 14px;
  display: none;
  opacity: 0.9;
  z-index: 2;
}
.back-to-top:link {
  color: #231f20;
  text-decoration: none;
}
.back-to-top:visited {
  color: #231f20;
  text-decoration: none;
}
.back-to-top:hover {
  background-color: #429644;
  color: white;
  text-decoration: none;
  opacity: 1;
}
.back-to-top:active {
  color: #231f20;
  text-decoration: none;
}

.grid {
  margin-bottom: 28px;
}
.grid h3 {
  margin-top: 0;
}

.grid-thumb {
  min-height: 310px;
}

/*# sourceMappingURL=main.css.map */
